Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | /***************************************************************************************************************** |
||
38 | ParameterBag.prototype.get = function (key, defaultValue) { |
||
39 | var value = this.store[key]; |
||
40 | if ('undefined' == typeof(value)) { |
||
41 | return defaultValue; |
||
42 | } |
||
43 | |||
44 | return value; |
||
45 | }; |
||
46 | |||
55 |